home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / RelativeURL.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  696 b   |  13 lines

  1. package symantec.itools.net;
  2.  
  3. import java.net.MalformedURLException;
  4. import java.net.URL;
  5. import symantec.itools.lang.Context;
  6.  
  7. public class RelativeURL {
  8.    public static URL getURL(String var0) throws MalformedURLException {
  9.       URL var1 = Context.getDocumentBase();
  10.       return var1 != null && var0.indexOf("//") == -1 ? new URL(var1, var0) : new URL(var0);
  11.    }
  12. }
  13.